home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / util / libs / MultiReq.lha / MultiReq / C / makefile next >
Makefile  |  1992-11-12  |  475b  |  22 lines

  1. all: TestProg SimpleDemo
  2.  
  3.  
  4. TestProg: TestProg.o mr.lib TestGads.o
  5.     ln TestProg.o TestGads.o -o TestProg -lc -q
  6.  
  7. TestProg.o: TestProg.c TestIncludes.pre
  8.     cc TestProg.c -so -hi TestIncludes.pre
  9.  
  10. TestGads.o: TestGads.c TestIncludes.pre
  11.     cc TestGads.c -m0b -so -hi TestIncludes.pre
  12.  
  13. TestIncludes.pre: TestIncludes.h
  14.     cc TestIncludes.h -m0b -so -ho TestIncludes.pre
  15.  
  16.  
  17. SimpleDemo: SimpleDemo.o
  18.     ln SimpleDemo.o -o SimpleDemo -lc -q
  19.  
  20. SimpleDemo.o: SimpleDemo.c
  21.     cc SimpleDemo.c -so
  22.